home *** CD-ROM | disk | FTP | other *** search
- @echo off
- choice "Which episode do you want to run the demo for: " /c:123
- if errorlevel 3 goto 3
- if errorlevel 2 goto 2
- if errorlevel 1 goto 1
-
- :1
- doom -playdemo seclev1 -nomonsters
- goto end
- :2
- if not exist DOOM.WAD goto no
- doom -playdemo seclev2 -nomonsters
- goto end
- :3
- if not exist DOOM.WAD goto no
- if exist seclev3.lmp goto 3a
- echo.
- echo Sorry, the demo for episode 3 was not ready in time for this release.
- echo Try again next release. I'm working on it.
- goto end
- :3a
- rem doom -playdemo seclev3 -nomonsters
- goto end
- :no
- echo.
- echo It has been detected that you are using the Sharware version of DOOM.
- echo You need to register DOOM in order to use Episodes 2 and 3
- :end
-